home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # gelenkte Missile
- #
- # created: 15-Jun-2000 Bernd
- # 09-Aug-2000 floh Missile-Aufschlag-Explosion (.iscollided)
- #
- # (C) COPYRIGHT 2000 RADONLABS GMBH
- #
-
- # --------------------------------------------------------
- # G E L E N K T E R A K E T E N
- # --------------------------------------------------------
- proc guidedmissilewatch_normal {} {
-
- if {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate burn
- } elseif {[.hastargetchanged] == "true"} {
- .selectnewcommandlist /commandlists/guidedmissile/goto
- }
- }
-
- proc guidedmissilewatch_explode {} {
-
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc guidedmissilewatch_burn {} {
-
- if {[.isanimfinished] == "true"} {
- .setremoveable true
- }
- }
-
- proc guidedmissilewatch_cinematic {} {
-
- # empty
- }
-
- #-------------------------------------------------------------------------------
- # TORPEDOS
- # koennen zerstoert werden, deswegen .iskilled testen
- #-------------------------------------------------------------------------------
- proc torpedowatch_normal {} {
-
- if {[.iscollided] == "true"} {
- .announcestate explode
- } elseif {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate burn
- } elseif {[.hastargetchanged] == "true"} {
- .selectnewcommandlist /commandlists/guidedmissile/goto
- }
- }
- #-------------------------------------------------------------------------------
- # Spell-Action-Routinen
- # =====================
- # Eigentlich nicht genau der richtige Platz dafuer, ein richtiger
- # "Spellaction" Objekt Prototyp waere besser, der letztenendes eine
- # Missile erzeugt.
- #-------------------------------------------------------------------------------
-
- #-------------------------------------------------------------------------------
-
-